home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 27 / CU Amiga Magazine's Super CD-ROM 27 (1998)(EMAP Images)(GB)[!][issue 1998-10].iso / CUCD / Utilities / SmartFilesystem / SFS_BETA.readme < prev    next >
Encoding:
Text File  |  1998-08-06  |  5.2 KB  |  154 lines

  1. Short:    Smart Filesystem 4th BETA version
  2. Author:   hjohn@xs4all.nl
  3. Uploader: hjohn@xs4all.nl
  4. Type:     disk/misc
  5. Version:  0.85
  6.  
  7. ------------------------------------------------------------
  8.  
  9. This filesystem is BETA -- this means it is not finished and
  10.           may potentially destroy all your data.
  11.  
  12.                  USE AT YOUR OWN RISK!
  13.  
  14.  For more information, see http://www.xs4all.nl/~hjohn/SFS
  15.  
  16. ------------------------------------------------------------
  17.  
  18.  
  19.  
  20. What's new?
  21. -----------
  22.  
  23.   4 August 1998, changes for version 0.85:
  24.  
  25.   - Requesters which ask for a SFS disk to be inserted will now be
  26.     retried automatically when a disk is actually inserted.
  27.  
  28.   - SFS now guarantees data is commited atleast every 20 seconds,
  29.     even if the disk is being accessed continuously.
  30.  
  31.   - BUGFIX: The filesystem no longer gets confused when it thinks a
  32.     disk is inserted twice.  This fixes problems with
  33.     omniscsi.device.
  34.  
  35.   - BUGFIX: Renaming a file to an empty name with the workbench now
  36.     returns 'object name invalid' instead of 'object not found'.
  37.  
  38.   - BUGFIX: Creating a dir with the same name as a file no longer
  39.     deletes the file.
  40.  
  41.   - BUGFIX: 100 character limit is now enforced, instead of allowing
  42.     you to create names of any length.
  43.  
  44.   - Copyback mode added to internal caching system.  This helps a lot
  45.     to speed up small write operations.  I also tweaked the cache
  46.     system a bit for performance.
  47.  
  48.   - BUGFIX: Creating files larger than 32 MB using SetFileSize()
  49.     now works correctly.  This fixes a problem with creating large
  50.     file disks using Shapeshifter.
  51.  
  52.   - BUGFIX: Write protection status is now checked each time a disk
  53.     is inserted, not just at startup.
  54.  
  55.   - BUGFIX: Reading directories has been made a bit more robust which
  56.     will fix problems with some programs.
  57.  
  58.   - Error messages returned by SFS when there was an error accessing
  59.     the device are improved.
  60.  
  61.   - Included SFScheck in the archive -- this is a program to check
  62.     the structure of your SFS disk.  It will report any errors it
  63.     finds but won't make any modifications.  Read its docs and use
  64.     it reguraly if you value your data!
  65.  
  66.   Note: This version is compatible with the previous releases of SFS
  67.         starting from version 0.67.  There is no need to reformat
  68.         existing SFS partitions.
  69.  
  70.  
  71.   14 June 1998, changes for version 0.71:
  72.  
  73.   - BUGFIX: It was possible to open a directory as a file using
  74.     MODE_READWRITE.
  75.  
  76.   - NEW: Soft links are now supported.  You need to specify a full
  77.     path with Makelink when creating soft links.  Hard links are not
  78.     supported.
  79.  
  80.   - NEW: A new program, SFSformat, is now included in the archive.
  81.     Using this format command you can quick format a SFS disk and
  82.     specify if you want case sensitive file and directory names.
  83.  
  84.   Note: This version is compatible with the 0.67 and the 0.68
  85.         versions.  There is no need to reformat existing SFS 
  86.         partitions.
  87.  
  88.  
  89.  
  90. Introduction
  91. ------------
  92.  
  93. Smart Filesystem is a new filesystem for your Amiga.  A
  94. filesystem's main purpose is to store files on a disk in
  95. such a way that they can be located and used quickly.  How
  96. this is done is up to the filesystem.  The way information
  97. is stored on your disk has a large impact on speed and space
  98. efficiency, and so these factors can vary a lot from
  99. filesystem to filesystem.
  100.  
  101. Smart Filesystem was created to provide you with an
  102. alternative to the Fast Fileystem.  Smart Filesystem makes
  103. more efficient use of your disk space, has better
  104. performance in most areas and will allow for new features
  105. never seen before in an Amiga filesystem.
  106.  
  107.  
  108.  
  109. Features
  110. --------
  111.  
  112.  o Fast reading of directories.
  113.  
  114.  o Fast seeking, even in extremely large files.
  115.  
  116.  o Blocksizes of 512 bytes up to 32768 bytes (32 kB) are supported.
  117.  
  118.  o Supports large partitions.  The limit is about 2000 GB, but it can
  119.    be more depending on the blocksize.
  120.  
  121.  o Support for partitions larger than 4 GB or located (partially)
  122.    beyond the 4 GB barrier on your drive.  There is support for the
  123.    New Style Devices which support 64 bit access, the 64-bit
  124.    trackdisk commands and SCSI direct.
  125.  
  126.  o The length of file and directory names can be 100 characters.
  127.  
  128.  o The size of a file is limited to slightly less than 2 GB.
  129.  
  130.  o Modifying data on your disk is very safe.  Even if your system is
  131.    resetted, crashes or suffers from powerloss your disk will not be
  132.    corrupted and will not require long validation procedures before
  133.    you will be able to use it again.  In the worst case you will
  134.    only lose the last few modifications made to the disk.
  135.  
  136.  o There is a built-in configurable read-ahead cache system which
  137.    tries to speed up small disk accesses.  This cache has as a
  138.    primary purpose to speed up directory reading but also works very
  139.    well to speed up files read by applications which use small 
  140.    buffers.
  141.  
  142.  o Disk space is used very efficiently.
  143.  
  144.  o Supports Notification and Examine All.
  145.  
  146.  o Supports Soft links (hard links are not supported for now).
  147.  
  148.  o Using the SFSformat command you can format your SFS partition with
  149.    case sensitive or case insensitive file and directory names.
  150.    Default is case insensitive (like FFS).
  151.  
  152. For more information, see http://www.xs4all.nl/~hjohn/SFS or read
  153. the included documentation.
  154.